home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / rbbs_pc / jdrbbs08.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-02-13  |  1KB  |  30 lines

  1. @echo off
  2. REM
  3. REM    Usage: INSTALL d
  4. REM
  5. REM    Where "d" is drive you wish to install JDR_BBS onto.
  6. REM
  7. REM    This batch file will unpack BBS.ZIP and create the appropriate
  8. REM    directories.  Ultimately, we want:  d:\
  9. REM                                        ├─BBS
  10. REM                                        │  ├─GLOBAL
  11. REM                                        │  │  ├─GRAMMAR
  12. REM                                        │  │  ├─MSGSTUFF
  13. REM                                        │  │  ├─SYSTEM
  14. REM                                        │  │  ├─TEXT
  15. REM                                        │  │  └─INDEXES
  16. REM                                        │  └─NODE.001
  17. REM                                        │     ├─ANSI
  18. REM                                        │     ├─RAMDRIVE
  19. REM                                        │     └─TEMPAREA
  20. REM                                        └─UPLOADS
  21. REM
  22. pkunzip -d BBS %1:\
  23. md %1:\BBS\GLOBAL\GRAMMAR
  24. md %1:\BBS\GLOBAL\INDEXES
  25. md %1:\BBS\NODE.001\RAMDRIVE
  26. md %1:\BBS\NODE.001\TEMPAREA
  27. md %1:\UPLOADS
  28. echo Done.
  29.  
  30.